HTML Parser is sort of like compiler in programming but a more forgiving one
Created: 2022-09-12 Tags: #fleeting
HTML parser will always reduce whitespaces to 1 only For instance Is the same as this below
<p>Dogs are silly</p> Copy
<p>Dogs are silly</p>
Will output into -> Dogs are silly
Dogs are silly